static linking - определение. Что такое static linking
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое static linking - определение

SET OF ROUTINES, EXTERNAL FUNCTIONS AND VARIABLES IN COMPUTER SCIENCE
Statically linked library; Static libraries; Statically Linked Library; Static Library; Static linking; .a; .lib; Static archive; Static binary; Static executable; Static compilation
Найдено результатов: 458
Static library         
In computer science, a static library or statically-linked library is a set of routines, external functions and variables which are resolved in a caller at compile-time and copied into a target application by a compiler, linker, or binder, producing an object file and a stand-alone executable. This executable and the process of compiling it are both known as a static build of the program.
static analysis         
SIMPLIFIED ANALYSIS WHEREIN THE EFFECT OF AN IMMEDIATE CHANGE TO A SYSTEM IS CALCULATED WITHOUT REGARD TO THE LONGER-TERM RESPONSE OF THE SYSTEM TO THAT CHANGE
Static scoring; Static projection; Static Analysis
<theory, programming> A family of techniques of program analysis where the program is not actually executed (as opposed to dynamic analysis), but is analyzed by tools to produce useful information. Static analysis techniques range from the most mundane (statistics on the density of comments, for instance) to the more complex, semantics-based techniques. Qualities sought in static analysis techniques are soundness and completeness. (2003-04-12)
Static analysis         
SIMPLIFIED ANALYSIS WHEREIN THE EFFECT OF AN IMMEDIATE CHANGE TO A SYSTEM IS CALCULATED WITHOUT REGARD TO THE LONGER-TERM RESPONSE OF THE SYSTEM TO THAT CHANGE
Static scoring; Static projection; Static Analysis
Static analysis, static projection, or static scoring is a simplified analysis wherein the effect of an immediate change to a system is calculated without regard to the longer-term response of the system to that change. If the short-term effect is then extrapolated to the long term, such extrapolation is inappropriate.
Static program analysis         
PROGRAM ANALYSIS PERFORMED WITHOUT ACTUALLY EXECUTING PROGRAMS
Static testing; Code analysis; Static code analysis; Static analysis tool; Static analyzer; Static language; Static programming analysis
In computer science, static program analysis (or static analysis) is the analysis of computer programs performed without executing them, in contrast with dynamic program analysis, which is performed on programs during their execution.
Reticular         
  • isbn=978-3527306732}}</ref>
  • The compound [[bis(triethoxysilylpropyl)tetrasulfide]] is a cross-linking agent: the [[siloxy]] groups link to silica and the [[polysulfide]] groups vulcanize with [[polyolefin]]s.
CHEMICAL REACTION OF POLYMERS
Cross-linker; Crosslinked polymer; Crosslinker; Cross link; Cross-linking agent; Crosslinking agent; Cross-linked; Crosslinked; Crosslink; Chemical crosslinking; Protein crosslinking; Cross linker; Bifunctional crosslinking reagent; Crosslinking reagent; Cross-links; Reticular; Cross-polymerization; Cross linking; UV cross-linking; UV crosslinking; Chemical cross-linking; Chemical crosslink; Cross-linking reagent
·adj Of or pertaining to a reticulum.
II. Reticular ·adj Having the form of a net, or of network; formed with interstices; retiform; as, reticular cartilage; a reticular leaf.
reticular         
  • isbn=978-3527306732}}</ref>
  • The compound [[bis(triethoxysilylpropyl)tetrasulfide]] is a cross-linking agent: the [[siloxy]] groups link to silica and the [[polysulfide]] groups vulcanize with [[polyolefin]]s.
CHEMICAL REACTION OF POLYMERS
Cross-linker; Crosslinked polymer; Crosslinker; Cross link; Cross-linking agent; Crosslinking agent; Cross-linked; Crosslinked; Crosslink; Chemical crosslinking; Protein crosslinking; Cross linker; Bifunctional crosslinking reagent; Crosslinking reagent; Cross-links; Reticular; Cross-polymerization; Cross linking; UV cross-linking; UV crosslinking; Chemical cross-linking; Chemical crosslink; Cross-linking reagent
a.; (also reticulated)
Meshy, retiform.
Mobile deep linking         
TYPE OF HYPERLINK THAT LINKS TO A SPECIFIC LOCATION WITHIN A MOBILE APP
User:Richard Shum/sandbox; Wikipedia talk:Articles for creation/Mobile deep linking; Deferred deep linking
In the context of mobile apps, deep linking consists of using a uniform resource identifier (URI) that links to a specific location within a mobile app rather than simply launching the app. Deferred deep linking allows users to deep link to content even if the app is not already installed.
hot link         
USE OF A LINKED OBJECT ON ONE SITE BY A WEB PAGE BELONGING TO A SECOND SITE
Bandwidth theft; Hot linking; Hotlinking; Hotlink; Hot-link; Hot link; Hot linked; Hot-linked; Hot-linking; Direct linking; Direct link; Html image linking; Image leeching; Inline link; Image hotlinking
A hot link is a word or phrase in a hypertext document that can be selected in order to access additional information. (COMPUTING)
N-COUNT
Static site generator         
  • Server-side template system
  • template engine]]) to mass-produce web documents.
SOFTWARE TO GENERATE STATIC WEBSITES
Static site generation; Static rendering
Static site generators (SSGs) are engines that use text input files such as Markdown, reStructuredText, and AsciiDoc to generate static web pages. Static sites generated by static site generators do not require a backend after site generation, making them first-class citizens on content delivery networks (CDNs).
Static single assignment form         
INTERMEDIATE REPRESENTATION (IR) IN WHICH EACH VARIABLE IS ASSIGNED EXACTLY ONCE, AND EVERY VARIABLE IS DEFINED BEFORE IT IS USED
SSA form; SSA Form; SSA (compilers); SSAF; Static single assignment; Single static assignment; SSA optimisation algorithm; Static single-assignment representation; Static single assignment representation; Static Single Assignment; Static Single Assignment form; SSA (computing); Static single assignment form
In compiler design, static single assignment form (often abbreviated as SSA form or simply SSA) is a property of an intermediate representation (IR), which requires that each variable be assigned exactly once, and every variable be defined before it is used. Existing variables in the original IR are split into versions, new variables typically indicated by the original name with a subscript in textbooks, so that every definition gets its own version.

Википедия

Static library

In computer science, a static library or statically-linked library is a set of routines, external functions and variables which are resolved in a caller at compile-time and copied into a target application by a compiler, linker, or binder, producing an object file and a stand-alone executable. This executable and the process of compiling it are both known as a static build of the program. Historically, libraries could only be static. Static libraries are either merged with other static libraries and object files during building/linking to form a single executable or loaded at run-time into the address space of their corresponding executable at a static memory offset determined at compile-time/link-time.